home *** CD-ROM | disk | FTP | other *** search
/ Workbench Design / WB Collection.iso / workbench werkzeuge / scherz programme / explode / makefile < prev    next >
Makefile  |  1996-04-07  |  472b  |  27 lines

  1. #
  2. # makefile for explode and config
  3. #
  4. # Bruno Costa - 30 Aug 89 - 30 Dec 89
  5. #
  6.  
  7. .c.o:
  8.     LC:lc -cus -d3 $*
  9.  
  10. .a.o:
  11.     asm $*
  12.  
  13. all: config explode
  14.  
  15. config: config.o
  16.     LC:blink from LIB:c.o config.o to config \
  17.  library LIB:lc.lib smallcode smalldata nodebug batch
  18.  
  19. explode.o: explode.c
  20.     LC:lc -cus -b0 -r0 -v $*
  21.  
  22. explode: explode.o exp.o
  23.     LC:blink from LIB:cback.o explode.o exp.o to explode \
  24.  library LIB:lc.lib batch DEFINE __main=__tinymain DEFINE _exit=__exit \
  25.  sd nodebug
  26.  
  27.